home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / openssh_231.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  71 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added BugtraqID
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(10608);
  14.  script_bugtraq_id(2356);
  15.  script_version ("$Revision: 1.13 $");
  16.  
  17.  name["english"] = "OpenSSH 2.3.1 authentication bypass vulnerability";
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. You are running OpenSSH 2.3.1.
  22.  
  23. This version is vulnerable to a flaw which
  24. allows any attacker who can obtain the public key
  25. of a valid SSH user to log into this host without
  26. any authentication.
  27.  
  28. Solution :
  29. Downgrade to OpenSSH 2.3.0 or upgrade to OpenSSH 2.3.2
  30.  
  31. Risk factor : High";
  32.     
  33.     
  34.  
  35.  script_description(english:desc["english"]);
  36.  
  37.  summary["english"] = "Checks for the remote SSH version";
  38.  summary["francais"] = "VΘrifie la version de SSH";
  39.  script_summary(english:summary["english"], francais:summary["francais"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  45.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  46.  family["english"] = "Gain a shell remotely";
  47.  family["francais"] = "Obtenir un shell α distance";
  48.  script_family(english:family["english"], francais:family["francais"]);
  49.  script_dependencie("ssh_detect.nasl");
  50.  script_require_ports("Services/ssh", 22);
  51.  exit(0);
  52. }
  53.  
  54. #
  55. # The script code starts here
  56. #
  57.  
  58. include("backport.inc"); 
  59.  
  60. port = get_kb_item("Services/ssh");
  61. if(!port)port = 22;
  62.  
  63. banner = get_kb_item("SSH/banner/" + port);
  64. if ( ! banner ) exit(0);
  65. banner = tolower(get_backport_banner(banner:banner));
  66.  
  67. if("openssh" >< banner)
  68. {
  69.  if("2.3.1" >< banner)security_hole(port);
  70. }
  71.